/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Orbitron", sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* --- Header --- */
.header {
    width: 100%;
    background-color: rgba(0,0,0,0.85);
    border-bottom: 3px solid #00eaff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s;
}

.header nav a:hover,
.header nav a.active {
    color: #00eaff;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.35); /* Darkens video for text readability */
}

/* Hero Content */
.hero-content h2 {
    font-size: 42px;
    color: #00eaff;
}

.hero-content p {
    margin-top: 8px;
    font-size: 18px;
    color: #cfcfcf;
}

/* --- Products / Cards --- */
.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    padding: 40px 20px;
}

.card {
    width: 270px;
    padding: 20px;
    background-color: rgba(0,0,0,0.65);
    border: 2px solid #00eaff;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px #00eaff;
}

.card h3 {
    color: #00eaff;
    margin-bottom: 8px;
}

.card p,
.card ul {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    margin-bottom: 10px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 18px;
    background-color: #00eaff;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #008bbd;
}

.whatsapp {
    background-color: #25d366;
    color: #fff;
}

.whatsapp:hover {
    background-color: #128c7e;
}

.email {
    background-color: #00eaff;
    color: black;
}

.email:hover {
    background-color: #008bbd;
}

/* --- Contact Buttons Section --- */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

/* --- Footer --- */
footer {
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.85);
    border-top: 3px solid #00eaff;
    padding: 20px 0;
    color: #cccccc;
    font-size: 14px;
}
